home *** CD-ROM | disk | FTP | other *** search
/ New Star Software Collection / NSS_Collection.iso / 5-029 turbo debugger and assem / disks.7z / 3 / CHAPXMPL.ARC / SHOWTOT.C < prev    next >
Encoding:
C/C++ Source or Header  |  1988-08-29  |  173 b   |  11 lines

  1. extern int StartingValue;
  2. extern int DoTotal(void);
  3. int Repetitions;
  4. main()
  5. {
  6.    int i;
  7.    Repetitions = 10;
  8.    StartingValue = 2;
  9.    printf("%d\n", DoTotal());
  10. }
  11.